home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK1.toast / Development Kits (Disc 1) / AIAT 1.0.1 / Headers / Analysis / OneByteAnalysis.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-11  |  870 b   |  53 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        OneByteAnalysis.h
  3.  
  4.     Contains:    class OneByteAnalysis
  5.  
  6.     Version:    1.0
  7.  
  8.     Copyright:    © 1994 - 1997 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                Farzin Maghoul
  13.  
  14.         Other Contact:        Kevin Tiene
  15.  
  16.         Technology:            xxx put the technology group name here xxx
  17.  
  18.     Writers:
  19.  
  20.         (dgc)    David Cásseres
  21.  
  22.     Change History (most recent first):
  23.  
  24.          <3>     1/22/97    dgc        Fix up this header
  25.          <2>     1/16/97    dgc        Correct type id.
  26. */
  27.  
  28. #pragma once
  29. #ifndef OneByteAnalysis_h
  30. #define OneByteAnalysis_h
  31.  
  32. #pragma import on
  33.  
  34. #include "IAAnalysis.h"
  35.  
  36. #pragma IA_BEGIN_EXPORTS
  37.  
  38. const uint32        OneByteAnalysisType = '1Bt1';
  39.  
  40. class OneByteAnalysis : public IAAnalysis {
  41. public:
  42.                     OneByteAnalysis() : IAAnalysis(OneByteAnalysisType) {}
  43.  
  44.     IATokenStream*    MakeTokenStream(IADocText* text);
  45.     IATerm*            GetProtoTerm();
  46. };
  47.  
  48. #pragma IA_END_EXPORTS
  49.  
  50. #pragma import reset
  51.  
  52. #endif
  53.